home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.1 / Amiga Developer CD v1.1 - May 1996 (1996)(Schatztruhe)[!].iso / Contributions / IAM / Networking / Envoy-2.0 / obs / Security < prev    next >
Text File  |  1994-12-22  |  3KB  |  73 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        *
  3.  *  $Id: Security 1.1 1994/11/29 13:36:31 heinz Exp $
  4.  *                                                                        */
  5. /*------------------------------------------------------------------------*/
  6.  
  7. Envoy Security
  8. --------------
  9.  
  10. Security in Envoy is similar to that of Unix, where you have users and
  11. groups.  Just like in Unix, each user has a name, password, numeric
  12. user id, and a primary group id.  Each user also has specific flags
  13. that specify whether or not a user may create groups, change his name,
  14. change his password, etc.  A group in Envoy is also similar to the
  15. concept in Unix, where each group has a numeric group id and contains
  16. an arbitrary number of users.
  17.  
  18. Unlike Unix, every machine using Envoy does not need to have it's own
  19. private list of users and groups.  Only machines that are exporting
  20. services need to have a user and group database.
  21.  
  22. The core of Envoy security is the Accounts Manager, which runs on each
  23. machine that is exporting services, such as a printer or file system.
  24. The Accounts Manager is a process that keeps track of all user and
  25. group information on a particular machine.  The Accounts Manager is
  26. accessed from Envoy services by using the accounts.library, which is
  27. described below.
  28.  
  29.  
  30. User and Group Administration
  31. -----------------------------
  32.  
  33. User and Group administration is accomplished by using the two
  34. configuration tools, named Users and Groups.
  35.  
  36. The Users tool allows you to add, remove, or change users on a
  37. particular machine.  When it is started, it will ask you to log in.
  38. If this is the first time you've run the Users tool, you should log in
  39. with a user name of "Admin" with a password of "Admin".  At this point
  40. you should probably change the password for the Admin account.  You
  41. may also change then name of the Admin account if you wish.
  42.  
  43. If you want to add a user to your machine, click on the Create gadget
  44. below the ListView gadget.  A new account named "NewUser" will be
  45. created.  You can then change then change "NewUser" to anything that
  46. you like, as well as the password.  You can also change what the user
  47. can and can't do by using the checkbox gadgets on the right.
  48.  
  49. To add or remove groups, you must run the Groups tool.  Once you have
  50. logged in, you will see two listview gadgets.  The one on the left
  51. lists the groups that have been created on your machine.  The list on
  52. the right is for displaying what users are members of the currently
  53. selected group.
  54.  
  55. To add a group, click on the Create button below the left listview.  A
  56. new group named "NewGroup" will be created.  You may change the name
  57. of this group by clicking in the string gadget below the lefthand
  58. listview.
  59.  
  60. To add a user to the currently selected group, click on the Add...
  61. button below the righthand listview.  A requester will open that will
  62. allow you to click on a user to add.
  63.  
  64. You may remove a group member by clicking on a user's name in the
  65. righthand listview and clicking on the Remove button.
  66.  
  67. Each group also may have a Group Administrator that is allowed to add
  68. or remove users to a particular group.  The default for the Group
  69. Administrator is the Admin account.  You may change this by clicking
  70. on the Select... gadget above the righthand listview.  A requester
  71. will open that will allow you to select the new Group Administrator.
  72.  
  73.